home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 11047 / 11047.xpi / content / myspace2mp3.js < prev    next >
Text File  |  2009-06-11  |  891b  |  32 lines

  1. // ==UserScript==
  2. // @name           MySpace 2 MP3
  3. // @description    Adds an option to download and convert MyVideo videos.
  4. // @namespace      http://googlesystem.blogspot.com
  5. // @include        http://*.myspace.com/*videoid*
  6. // @include        http://*.myspace.com/*VideoID*
  7. // @version        0.3
  8. // ==/UserScript==
  9.  
  10. (function () {
  11.  
  12.  
  13.  
  14.   if (document.getElementById('convert-myspace-video')) return;
  15.  
  16.  
  17.   
  18.  
  19.    var myspace2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL); 
  20.    
  21.    var div_embed = document.getElementById('tv_embedcode_wrapper');
  22.  
  23.    if (div_embed) {
  24.       div_embed.innerHTML = div_embed.innerHTML + '   <span id=\'convert-myspace-video\'> <a  href=\''+myspace2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span>';      
  25.   }
  26.  
  27.  
  28.  
  29.  
  30.  
  31.   
  32. })();